home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-08-07 | 1.3 KB | 54 lines | [TEXT/MPS ] |
- (*
- File: Packages.mod
-
- Contains: Package Manager Interfaces.
-
- Version: Technology: System 7.5
- Package: Universal Interfaces 2.0 in “MPW Latest” on ETO #17
-
- Copyright: © 1984-1995 by Apple Computer, Inc.
- All rights reserved.
-
- Bugs?: If you find a problem with this file, use the Apple Bug Reporter
- stack. Include the file and version information (from above)
- in the problem description and send to:
- Internet: apple.bugs.applelink.apple.com
- AppleLink: APPLE.BUGS
-
- *)
-
- (*$TAGS-*)
- (*$CALLING PASCAL*)
- MODULE Packages;
-
- IMPORT SYSTEM;
-
- (* $PUSH*)
- (* $ALIGN MAC68K*)
- (* $LibExport+*)
-
- CONST
- listMgr* = 0; (* list manager *)
- dskInit* = 2; (* Disk Initializaton *)
- stdFile* = 3; (* Standard File *)
- flPoint* = 4; (* Floating-Types.Point Arithmetic *)
- trFunc* = 5; (* Transcendental Functions *)
- intUtil* = 6; (* International Utilities *)
- bdConv* = 7; (* Binary/Decimal Conversion *)
- editionMgr* = 11; (* Edition Manager *)
-
-
- PROCEDURE InitPack*(packID: INTEGER);
- (*$IF NOT GENERATINGCFM*)
- INLINE PASCAL $A9E5;
- (*$END*)
- PROCEDURE InitAllPacks*;
- (*$IF NOT GENERATINGCFM*)
- INLINE PASCAL $A9E6;
- (*$END*)
-
- (* $ALIGN RESET*)
- (* $POP*)
-
- END Packages.
-